/* 定义自定义字体 */
@font-face {
    /* 字体名称，可自定义，用于后续引用 */
    font-family: 'MyCustomFont';
    
    /* 字体文件路径，根据你的实际文件位置修改 */
    /* 建议将TTF文件放在项目的fonts文件夹中 */
    src: url('/static/theme/jmttf/feichi.ttf') format('truetype');
    
    /* 字体样式设置 */
    font-weight: normal; /* 常规字重 */
    font-style: normal;  /* 常规样式 */
}

/* 使用自定义字体的样式类 */
.custom-font {
    /* 引用上面定义的字体名称 */
    font-family: 'MyCustomFont', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}